home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPNN133U.ZIP / DEMO2TRN.RSP < prev    next >
Text File  |  1992-11-19  |  1KB  |  53 lines

  1. //
  2. //    file:    demo2trn.rsp
  3. //    desc:    demo2 training response file
  4. //    by:    patrick ko shu pui
  5. //    date:    27 apr 1992
  6. //
  7. //    comments:
  8. //
  9. //    This resp file is used to train a 2 hidden layer neural net to
  10. //    learn an shift function.  The NN has a 4-unit input, 4-unit 
  11. //    output, a 4-unit 1st hidden layer, and a 3-unit 2nd hidden layer.
  12. //    The result file is contained in demo2.out where you may view
  13. //    the output. If you output is close to 1 you may interpret it as
  14. //    a 1, and 0 if it is close to 0.
  15. //
  16.  
  17. // 4 input units
  18. -i=4
  19.  
  20. // 4 output units
  21. -o=4
  22.  
  23. // 2 hidden layers
  24. -hh=2
  25.  
  26. // 1st hidden layer = 4 units
  27. -h=4
  28.  
  29. // 2nd hidden layer = 3 units
  30. -h=3
  31.  
  32. // use demo2.trn as training file
  33. -ftrain=demo2.trn
  34.  
  35. // and there are 4 training patterns
  36. -samp=4
  37.  
  38. // weight dump file is demo2.dmp
  39. -fdump=demo2.dmp 
  40.  
  41. // report training status every 10 cycles
  42. -r=10
  43.  
  44. //
  45. // the above option in this response file is equivalent to the following command line
  46. //
  47. // bptrain -i=4 -o=4 -hh=2 -h=4 -h=3 -ftrain=demo2.trn -samp=4 -fdump=demo2.dmp -r=10
  48. //
  49. // and you should use the following command line for recognition 
  50. //
  51. // bprecog -i=4 -o=4 -hh=2 -h=4 -h=3 -frecog=demo2.rgn -samp=2 -fdump=demo2.dmp -fout=demo2.out
  52. //
  53.